If you're put off by the term 'blog' being overused and overhyped, think of the conference as discussing the potential and challenges of a (relatively) new one-to-many and many-to-many communication mechanism and how that could affect the interactions between scientists and the public, and the interactions between scientists.
Thursday, January 18, 2007
Science Blogging Conference
Wednesday, January 17, 2007
Basis sets galore
Thursday, October 26, 2006
Schrodinger equation in the mass media
The video also shows rolling dice (briefly), if one wishes to stretch its relevance to include Monte Carlo as well.
Friday, October 20, 2006
The Other QMC
And in fact, it does share the property of arbitrary termination with Monte Carlo integration (consider a grid - you have have use all the points at a particular spacing. Stopping half way across the region of integration is not going to yield good results).
The reason people are interested in QuasiMC is that its convergence is better than the 1/sqrt(N) of Monte Carlo. It does this by using point sets that are more evenly distributed than random points - there are fewer clumps of points or large gaps that appear in random sequences (Search for 'Low-discrepancy sequences'. Here's the Wikipedia entries for a technical discussion and some sequences).
QuasiMC point sets are usually generated from sequences where the low-discrepancy condition can be verified theoretically, but it is possible to use the intuitive approach of making the points maximally spread out (see this presentation for an example).
The following algorithm will generate a set of N points that gives better convergence than random (at least it worked on a simple integrand in one dimension.)
- compute some random points (>> N points)
- pick a starting point and put it in the set S.
- find the point that is the furthest from all existing points in S, and place that point in S.
- repeat the step 3 until N points are selected.
(I'm not saying this an efficient way to generate the points, just that it can be done.)
For addition information, see also chapter 7.7 in Numerical Recipes
Friday, September 01, 2006
QMC wiki
It looks like a promising resource for the QMC research community.
Tuesday, June 27, 2006
Optimal histogram bin width
The article also investigates the number of data points for a reliable estimation of the density. The recommendation is 100-150 points, if the distribution is Gaussian.
It would be interesting to apply this method to radial distribution functions. However the assumption of a constant volume for each bin is not met in this case. There are several ways this could be adjusted, but I'm not sure they are valid (scale each bin count by the volume, or use non-uniform bin spacing to maintain constant volume)
Alternately, the discussion references other algorithms for dealing with variable bin-width models (which may be better for resolving multiple peaks anyway).
Thursday, June 08, 2006
QMC derivation notes
I'm posting this for two reasons. The first is in case anyone finds the formulas useful when working on a QMC code.
The second is related to the process of scientific programming. When writing a QMC code, I found it useful to record the formulas and derivations in a neatly typset form. Then the next step involved turning the equations into computer code. (Then, of course, testing and debugging).
This workflow is what I would like to capture with the Progamming in Mathematical Notation work. The document with derivations could be written in content MathML (or something more amenable to human manipulation). Ideally the computer could then assist with verifying the derivations for correctness, and with converting the equations into computer code.
And as long as I'm dreaming, I'd really like a wiki-like interface for creating and editing such a document (making a set of hyperlinked pages rather than a single linear document)